list1=[1,2,3,3]
list2=[39,43,2,3]
for i,k in zip(l1,l2):
    print(i+k)
What is the output of the Above code select one?    
a.
40
45
5
6
b.[1,2,3,3,39,43,2,3]
c. [40,45,5,6]
d.None

Posted on by